I have a repeater control on application where I have to use 3 buttons and these buttons should be displayed when any specific user logged on...user could be like Admin or Operator..
Please help with sample of code..
Thanks in advance!!!

home / developersection / forums / how to find control inside of repeater

Uttam Misra
27-Dec-2010Try this code...might help you...
if(Roles.IsUserInRole("operator")) { Button save=(Button)rptSample.Items[0].FindControl("btnSave"); save.Visible = true; Button update= (Button)rptSample.Items[0].FindControl("btnUpdate"); update.Visible = true; }